home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Programare / nativej / nativej-trial.exe / {app} / examples-source / Console.java next >
Text File  |  2004-12-14  |  348b  |  16 lines

  1. package examples;
  2.  
  3. /**
  4.  * This is a sample Java program that runs in console mode.
  5.  */
  6. public class Console
  7. {
  8.     public static void main(String[] args) throws Exception
  9.     {
  10.         if (args.length == 0)
  11.             System.out.println("Hello World!");
  12.         else
  13.             System.out.println("Hello " + args[0] + "!");
  14.     }
  15. }
  16.